crypto/tls.Conn.out (field)

43 uses

	crypto/tls (current package)
		conn.go#L104: 	in, out   halfConn
		conn.go#L838: 		return c.out.setErrorLocked(&net.OpError{Op: "local error", Err: err})
		conn.go#L855: 	return c.out.setErrorLocked(&net.OpError{Op: "local error", Err: err})
		conn.go#L860: 	c.out.Lock()
		conn.go#L861: 	defer c.out.Unlock()
		conn.go#L905: 	payloadBytes := tcpMSSEstimate - recordHeaderLen - c.out.explicitNonceLen()
		conn.go#L906: 	if c.out.cipher != nil {
		conn.go#L907: 		switch ciph := c.out.cipher.(type) {
		conn.go#L909: 			payloadBytes -= c.out.mac.Size()
		conn.go#L919: 			payloadBytes -= c.out.mac.Size()
		conn.go#L979: 		c.quicWriteCryptoData(c.out.level, data)
		conn.go#L1025: 		outBuf, err = c.out.encrypt(outBuf, data[:m], c.config.rand())
		conn.go#L1037: 		if err := c.out.changeCipherSpec(); err != nil {
		conn.go#L1049: 	c.out.Lock()
		conn.go#L1050: 	defer c.out.Unlock()
		conn.go#L1066: 	c.out.Lock()
		conn.go#L1067: 	defer c.out.Unlock()
		conn.go#L1213: 	c.out.Lock()
		conn.go#L1214: 	defer c.out.Unlock()
		conn.go#L1216: 	if err := c.out.err; err != nil {
		conn.go#L1239: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {
		conn.go#L1242: 				return n, c.out.setErrorLocked(err)
		conn.go#L1249: 	return n + m, c.out.setErrorLocked(err)
		conn.go#L1343: 		c.out.Lock()
		conn.go#L1344: 		defer c.out.Unlock()
		conn.go#L1354: 			c.out.setErrorLocked(err)
		conn.go#L1358: 		newSecret := cipherSuite.nextTrafficSecret(c.out.trafficSecret)
		conn.go#L1359: 		c.out.setTrafficSecret(cipherSuite, QUICEncryptionLevelInitial, newSecret)
		conn.go#L1464: 	c.out.Lock()
		conn.go#L1465: 	defer c.out.Unlock()
		conn.go#L1593: 			c.out.Lock()
		conn.go#L1594: 			if !errors.As(c.out.err, &a) {
		conn.go#L1597: 			c.out.Unlock()
		handshake_client.go#L532: 	c.out.version = vers
		handshake_client.go#L849: 	c.out.prepareCipherSpec(c.vers, clientCipher, clientHash)
		handshake_client_tls13.go#L526: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, clientSecret)
		handshake_client_tls13.go#L839: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_client_tls13.go#L846: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelApplication, hs.trafficSecret)
		handshake_server.go#L170: 	c.out.version = c.vers
		handshake_server.go#L775: 	c.out.prepareCipherSpec(c.vers, serverCipher, serverHash)
		handshake_server_tls13.go#L663: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, serverSecret)
		handshake_server_tls13.go#L778: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_server_tls13.go#L794: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelApplication, serverSecret)